home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-smtp.js < prev    next >
Encoding:
Text File  |  2005-03-05  |  8.0 KB  |  234 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Alec Flett <alecf@netscape.com>
  24.  *   Scott MacGregor <mscott@mozilla.org>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  28.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. const nsIPromptService = Components.interfaces.nsIPromptService;
  41. var smtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"].getService(Components.interfaces.nsISmtpService);
  42.  
  43. var gSmtpServerListWindow = 
  44. {
  45.   mBundle: null,
  46.   mServerList: null,
  47.   mAddButton: null,
  48.   mEditButton: null,
  49.   mDeleteButton: null,
  50.   mSetDefaultServerButton: null,
  51.  
  52.   onLoad: function()
  53.   {
  54.     parent.onPanelLoaded('am-smtp.xul');
  55.  
  56.     this.mBundle = document.getElementById("bundle_messenger");
  57.     this.mServerList = document.getElementById("smtpList");
  58.     this.mAddButton = document.getElementById("addButton");
  59.     this.mEditButton = document.getElementById("editButton");
  60.     this.mDeleteButton = document.getElementById("deleteButton");
  61.     this.mSetDefaultServerButton = document.getElementById("setDefaultButton");
  62.  
  63.     this.refreshServerList("", false);
  64.   },
  65.  
  66.   onSelectionChanged: function(aEvent)
  67.   {
  68.     if (this.mServerList.selectedItems.length <= 0) 
  69.       return;
  70.  
  71.     var server = this.getSelectedServer();
  72.     this.updateButtons(server);
  73.     this.updateServerInfoBox(server);    
  74.   },
  75.  
  76.   onDeleteServer: function (aEvent)
  77.   {
  78.     var server = this.getSelectedServer();
  79.     if (server)
  80.     {
  81.       // confirm deletion
  82.       var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(nsIPromptService);
  83.       var cancel = promptService.confirmEx(window, this.mBundle.getString('smtpServers-confirmServerDeletionTitle'), 
  84.                                            this.mBundle.getFormattedString('smtpServers-confirmServerDeletion', [server.hostname], 1),
  85.                                            (nsIPromptService.BUTTON_TITLE_YES * nsIPromptService.BUTTON_POS_0) + 
  86.                                            (nsIPromptService.BUTTON_TITLE_NO * nsIPromptService.BUTTON_POS_1),
  87.                                            null, null, null, null, { });
  88.  
  89.       if (!cancel)
  90.       {
  91.         smtpService.deleteSmtpServer(server);
  92.         parent.replaceWithDefaultSmtpServer(server.key);
  93.         this.refreshServerList("", true);
  94.       }
  95.     } 
  96.   },
  97.  
  98.   onAddServer: function (aEvent)
  99.   {
  100.     this.openServerEditor(null);
  101.   },
  102.  
  103.   onEditServer: function (aEvent)
  104.   {
  105.     if (this.mServerList.selectedItems.length <= 0) 
  106.       return;
  107.     this.openServerEditor(this.getSelectedServer());
  108.   },
  109.  
  110.   onSetDefaultServer: function(aEvent)
  111.   {
  112.     if (this.mServerList.selectedItems.length <= 0) 
  113.       return;
  114.  
  115.     smtpService.defaultServer = this.getSelectedServer();
  116.     this.refreshServerList(smtpService.defaultServer.key, true);
  117.   },
  118.  
  119.   updateButtons: function(aServer)
  120.   {
  121.     // can't delete default server
  122.     if (smtpService.defaultServer == aServer) 
  123.     {
  124.       this.mSetDefaultServerButton.setAttribute("disabled", "true");
  125.       this.mDeleteButton.setAttribute("disabled", "true");
  126.     }
  127.     else 
  128.     {
  129.       this.mSetDefaultServerButton.removeAttribute("disabled");
  130.       this.mDeleteButton.removeAttribute("disabled");
  131.     }
  132.   },
  133.  
  134.   updateServerInfoBox: function(aServer)
  135.   {
  136.     var noneSelected = this.mBundle.getString("smtpServerList-NotSpecified");
  137.  
  138.     document.getElementById('nameValue').value = aServer.hostname;
  139.     document.getElementById('descriptionValue').value = aServer.description || noneSelected;
  140.     document.getElementById('portValue').value = aServer.port;
  141.     document.getElementById('userNameValue').value = aServer.username || noneSelected;
  142.     document.getElementById('useSecureConnectionValue').value = this.mBundle.getString("smtpServer-SecureConnection-Type-" + 
  143.                                                                 aServer.trySSL);
  144.   },
  145.  
  146.   refreshServerList: function(aServerKeyToSelect, aFocusList)
  147.   {
  148.     // remove all children
  149.     while (this.mServerList.hasChildNodes())
  150.       this.mServerList.removeChild(this.mServerList.lastChild);
  151.  
  152.     var defaultServer = smtpService.defaultServer;
  153.     this.fillSmtpServers(this.mServerList, smtpService.smtpServers, defaultServer);
  154.  
  155.     if (aServerKeyToSelect)
  156.       this.mServerList.selectItem(this.mServerList.getElementsByAttribute("key", aServerKeyToSelect)[0]);
  157.     else // select the default server
  158.       this.mServerList.selectItem(this.mServerList.getElementsByAttribute("default", "true")[0]);
  159.     
  160.     if (aFocusList)
  161.       this.mServerList.focus();
  162.   },
  163.  
  164.   fillSmtpServers: function(aListBox, aServers, aDefaultServer)
  165.   {
  166.     if (!aListBox || !aServers) 
  167.       return;
  168.  
  169.     var serverCount = aServers.Count();
  170.     for (var i=0; i < serverCount; i++) 
  171.     {
  172.       var server = aServers.QueryElementAt(i, Components.interfaces.nsISmtpServer);
  173.       var isDefault = (aDefaultServer.key == server.key);
  174.       //ToDoList: add code that allows for the redirector type to specify whether to show values or not
  175.       if (!server.redirectorType) 
  176.       {
  177.         var listitem = this.createSmtpListItem(server, isDefault);
  178.         aListBox.appendChild(listitem);
  179.       }
  180.     }    
  181.   },
  182.  
  183.   createSmtpListItem: function(aServer, aIsDefault)
  184.   {
  185.     var listitem = document.createElement("listitem");
  186.     var serverName = "";
  187.  
  188.     if (aServer.description)
  189.       serverName = aServer.description + ' - ';
  190.     else if (aServer.username)
  191.       serverName = aServer.username + ' - ';
  192.     
  193.     serverName += aServer.hostname;
  194.       
  195.     if (aIsDefault)
  196.     {
  197.       serverName += " " + this.mBundle.getString("defaultServerTag");
  198.       listitem.setAttribute("default", "true");
  199.     }
  200.  
  201.     listitem.setAttribute("label", serverName);
  202.     listitem.setAttribute("key", aServer.key);
  203.     listitem.setAttribute("class", "smtpServerListItem");
  204.     
  205.     // give it some unique id
  206.     listitem.id = "smtpServer." + aServer.key;
  207.     return listitem;
  208.   },
  209.  
  210.   openServerEditor: function(aServer)
  211.   {
  212.     var args = {server: aServer,
  213.                 result: false,
  214.                 addSmtpServer: ""};
  215.  
  216.     window.openDialog("chrome://messenger/content/SmtpServerEdit.xul",
  217.                       "smtpEdit", "chrome,titlebar,modal,centerscreen", args);
  218.     
  219.     // now re-select the server which was just added
  220.     if (args.result)          
  221.       this.refreshServerList(aServer ? aServer.key : args.addSmtpServer, true);
  222.   
  223.     return args.result;
  224.   },
  225.  
  226.   getSelectedServer: function()
  227.   {
  228.     var serverKey = this.mServerList.selectedItems[0].getAttribute("key");
  229.     return smtpService.getServerByKey(serverKey); 
  230.   }
  231. };
  232.  
  233.  
  234.